home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7016.txt < prev    next >
Text File  |  1996-03-22  |  2KB  |  85 lines

  1. Returns a handle to the currently active symbol.
  2.  
  3. ActSymDef : Handle;
  4.  
  5. Returns a handle to the last object created in MiniPascal. Returns nil if no objects have been created yet.
  6.  
  7. LNewObj : Handle;
  8.  
  9. Returns a handle to the topmost object that contains the point (X, Y).
  10.  
  11. PickObject(X, Y : REAL) : Handle;
  12.  
  13. Receives a handle to a folder within the symbol library and returns a handle to the first object within that folder.
  14.  
  15. FInFolder(h : Handle) : Handle;
  16.  
  17. Receives a handle to a layer and returns the handle to the first object on that layer.
  18.  
  19. FInLayer(h : Handle) : Handle;
  20.  
  21. Receives a handle to a symbol definition in a symbol library and returns a handle to the first object within the symbol definition.
  22.  
  23. FInSymDef(h : Handle) : Handle;
  24.  
  25. Receives a handle to a 3D object and returns a handle to the first object inside the 3D object.
  26.  
  27. FIn3D(h : Handle) : Handle;
  28.  
  29. Receives a handle to a group and returns a handle to the first object inside the group.
  30.  
  31. FInGroup(h : Handle) : Handle;
  32.  
  33. Returns a handle to the first object in the current documentΓÇÖs symbol library.
  34.  
  35. FSymDef : Handle;
  36.  
  37. Receives a handle to a graphic object and returns a handle to its corresponding layer.
  38.  
  39. GetLayer(h : Handle) : Handle;
  40.  
  41. Returns a handle to the first selected object on the layer specified by h.
  42.  
  43. FSObject(h : Handle) : Handle;
  44.  
  45. Returns a handle to the currently active layer.
  46.  
  47. ActLayer : Handle;
  48.  
  49. Returns a handle to the last layer in a drawing.
  50.  
  51. LLayer : Handle;
  52.  
  53. Returns a handle to the first layer in a drawing.
  54.  
  55. FLayer : Handle;
  56.  
  57. Returns a handle to the object with the given name.
  58.  
  59. GetObject(Name : STRING) : Handle;
  60.  
  61. Returns a handle to the currently active spreadsheet.
  62.  
  63. ActSSheet : Handle;
  64.  
  65. Return a handle to the last selected object on the active layer.
  66.  
  67. LSActLayer : Handle;
  68.  
  69. Return a handle to the first selected object on the active layer.
  70.  
  71. FSActLayer : Handle;
  72.  
  73. Returns a handle to the first object on the active layer.
  74.  
  75. FActLayer : Handle;
  76.  
  77. Returns a handle to the last object in the active document.
  78.  
  79. LObject : Handle;
  80.  
  81. Returns a handle to the first object in the active document.
  82.  
  83. FObject : Handle;
  84.  
  85.